home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d27 / dm310.arc / ARC.MNU next >
Text File  |  1990-07-22  |  926b  |  51 lines

  1. Comment
  2. ===================================================
  3.  
  4. DM3 Menu Overlay * CopyRight 1989-90 By Marc Perkel
  5.  
  6. This menu works with ARC Files.
  7.  
  8. ===================================================
  9. EndComment
  10.  
  11. if ColorScreen
  12.    BoxHeaderColor Yellow Mag
  13.    InverseColor Yellow Mag
  14.    BoxBorderColor LGreen Brown
  15.    BoxInsideColor Grey Brown
  16. else
  17.    BoxHeaderColor Black Grey
  18.    InverseColor Black Grey
  19.    BoxBorderColor White Black
  20.    BoxInsideColor Grey Black
  21. endif
  22.  
  23. ClearScreenOnExit Off
  24. BlankTime = 10
  25. BlankMessage = 'Executing DM3'
  26.  
  27. BoxHeader = ' ARC Menu '
  28. DrawBox 42 7 22 6
  29. TextColor Yellow Brown
  30. ClearLine 205
  31. TextColor Grey Brown
  32. UseArrows
  33. CapsColor Yellow Brown
  34.  
  35. Writeln
  36. Writeln '  View ARC File'
  37. Writeln '  UnPack ARC File'
  38. Write   '  Freshen ARC File'
  39.  
  40. OnKey 'E'
  41.   ME %MenuFileName
  42.  
  43. OnKey 'V'
  44.   PKARC -V %1|MORE
  45.  
  46. OnKey 'U'
  47.   PKXARC -R %1
  48.  
  49. OnKey 'F'
  50.   PKARC -F %1
  51.